home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 9427 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.3 KB

  1. Path: druid.borland.com!usenet
  2. From: pete@borland.com (Pete Becker)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Model/View/Controller (MVC) implementation in C++ ?
  5. Date: 1 Mar 1996 17:07:48 GMT
  6. Organization: Borland International
  7. Distribution: world
  8. Message-ID: <4h7at4$4hj@druid.borland.com>
  9. References: <4h1bpm$jht@murex.murex.fr> <4h338p$bgm@news4.digex.net>
  10. NNTP-Posting-Host: pbecker.borland.com
  11. Mime-Version: 1.0
  12. Content-Type: Text/Plain; charset=ISO-8859-1
  13. X-Newsreader: WinVN 0.99.5
  14.  
  15. In article <4h338p$bgm@news4.digex.net>, ell@access1.digex.net says...
  16. >
  17. >Pascal MEHEUT (pascal@murex.fr) wrote:
  18. >: I'm looking for a library or tool, either commercial or free to help 
  19. >: implementing the MVC paradigm in C++.
  20. >: 
  21. >: I'm especially interesting in an "Events" system to implement the
  22. >: communication between the Model and the Views.
  23. >
  24. >For Windows applications check out the MS C++ Foundation Class library. 
  25. >It is in VC++, Symantic C++, and other compilers.  Borland 5.0 C++
  26. >supports using the library. 
  27.  
  28. Note, however, that MFC does not support Model/View/Controller. It supports 
  29. Document/View, which is a very weak design. If you try to do anything at all 
  30. sophisticated with it you run into significant problems in deciding where 
  31. things belong, and if you try to come up with a good design you ultimately end 
  32. up reinventing Model/View/Controller.
  33.  
  34.